Pneumonia Detection From Chest X-Rays
Exploratory Data Analysis
Criteria | Meet Specification |
---|---|
The student can create visualizations of the metadata that inform model training |
|
The student can visualize relevant properties of pixel-level data |
|
Model Building & Training
Criteria | Meet Specification |
---|---|
The student creates an appropriate train-test split of the data |
|
The student implements appropriate data augmentation to their training data |
|
The student evaluates the performance of their model using the appropriate statistics |
|
The student can integrate their model with real-world medical imaging data |
|
FDA Description and Validation Plan
Criteria | Meet Specification |
---|---|
The student can describe the intended population and the clinical impact of their model |
|
The student can describe how their model was designed and trained |
|
The student can describe the dataset used to train the algorithm and how the ground truth was created |
|
The student describes how they would create a FDA Validation set, ground truth, and what performance metric they would hold their algorithm to for FDA validation of their model. |
|
Tips to make your project standout:
- Create some of your own custom image augmentation (such as different image filtering techniques) rather than solely using those predefined by Keras’ ImageDataGenerator.
- Try creating two ‘nested’ models to specifically predict pneumonia. One that predicts pneumonia and/or infiltrates at the top level, and then a second model that specifically predicts pneumonia from the positive cases returned by the first model.
- Have your model output a class activation map in addition to a single binary prediction of pneumonia. This map will help a clinician to understand what the model is detecting as probable pneumonia in each image.